home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Online / Unreal / doc / faq < prev    next >
Text File  |  2002-08-07  |  5KB  |  144 lines

  1. [ $Id: faq,v 1.1.1.1.2.7 2002/08/07 21:18:53 stskeeps Exp $ ]
  2.  
  3. UnrealIRCd FAQ
  4. Made by Stskeeps
  5.  
  6. This file will contain frequently asked questions about 
  7. Unreal IRCd. If you need more help email stskeeps@tspre.org
  8.  
  9. 1) * I compile and everything seems fine during the compiling, but when it
  10.    comes time for the program to link, I get errors complaining about dns and
  11.    res things. What causes this?
  12.  
  13. A: You need to make sure -lresolv is included in the "extra libraries"
  14.    option of ./Config (or IRCDLIBS in top-level makefile)
  15.  
  16. 2) * When I start up the IRCd it complains about something with chdir()?
  17.  
  18. A: You need to make sure the right directory is specified when you was 
  19.    asked about "What directory are all the server configuration files in?"
  20.    ./Config question
  21.  
  22. 3) The server says like: 
  23.    *** Link server1 -> server2 is now synced [secs: 30 recv: 130.4 sent: 120.0]
  24.    when I link two servers together, what does that mean?
  25.  
  26. A: That means the link is "synced" (all infodata transfered about the server).
  27.    The "secs" (30 in this example) means it took 30 seconds to do the sync
  28.    "recv: 130.4" means there was recieved 130 KiloBytes and 4 bytes.
  29.    "sent: 120.0" means there was sent 120 kilobytes from my side.
  30.  
  31. 4) What is a negative TS split?
  32.  
  33. A: Every computer/server has got a time (so they can do TimeStamps) .. 
  34.    When the clock on the computer is set wrong and the computer it links 
  35.    upto is wrong it creates a Negative TS split (means time is lower it
  36.    actually is. How to fix this is contacting the root of the machine
  37.    and ask him to fix the time (when you made sure it's YOUR server that's 
  38.    wrong)
  39.  
  40. 5) What is an uProtocol ?
  41.  
  42. A: UnrealIRCd uses numbers to check if a link is compatible with itself
  43.    F.x Unreal v2.1.3 has got number 2103 while version 2.1 only has got 
  44.    2100 - This means .. if the number is lower/higher than the uProtocol
  45.    the server uses, it's an incompatible link (of some reasons)
  46.  
  47. 6) How does T:Lines work and what are they?
  48.  
  49. A: T:Lines is a new Unreal feature that makes it able to show different 
  50.   MOTDs and RULES to people who matches a certain hostmask . Lemme show you some examples:
  51.  
  52.    T:*.dk:motds/danish.motd:rules/danish.rules
  53.    T:*.fr:motds/french.motd:rules/french.rules
  54.  
  55.   This will get people from Denmark to see the "Danish" MOTD and the "Dandish" RULLES
  56.   and people from France to see the French ones:) 
  57.   
  58.   NOTE: T:Lines are read up side down so if you have a T:*:ircd.motd:ircd.rules in the bottom
  59.         it should be at the top so the other motd lines can work as well
  60.  
  61. 7) Where can i download updates to Unreal?
  62.  
  63. A: Mostly you can download the newest version at 
  64.    http://www.unrealircd.com
  65.  
  66.    Versions may be spewed out regulary due to new features and bugs.. 
  67.  
  68. 10) Hosts show up as (null).network.net !!
  69. A:  This is because you have forgotten to include the network file.
  70.     The correct form is (in unrealircd.conf)
  71.     Include ..........: <network file>
  72.  
  73.     If this doesn't work .. seek me at irc.ircsystems.net #unrealircd
  74.  
  75. 12) My IRCd which runs on a FreeBSD says something about FDs and
  76.     Max: 0 What shall I do?? 
  77. A:  Well it's somekinda bug but you can workaround it by removing those
  78.     lines in src/s_bsd.c: (init_sys())
  79.  
  80. <- snippet 1 ->
  81. #ifdef RLIMIT_FD_MAX
  82.     struct rlimit limit;
  83.     int     pid;
  84.  
  85.     if (!getrlimit(RLIMIT_FD_MAX, &limit))
  86.         {
  87. # ifdef    pyr
  88.         if (limit.rlim_cur < MAXCONNECTIONS)
  89. #else
  90.         if (limit.rlim_max < MAXCONNECTIONS)
  91. # endif
  92.             {
  93.             (void)fprintf(stderr,"ircd fd table too big\n");
  94.             (void)fprintf(stderr,"Hard Limit: %d IRC max: %d\n",
  95.                 limit.rlim_max, MAXCONNECTIONS);
  96.             (void)fprintf(stderr,"Fix MAXCONNECTIONS\n");
  97.             exit(-1);
  98.             }
  99. # ifndef    pyr
  100.         limit.rlim_cur = limit.rlim_max; /* make soft limit the max */
  101.         if (setrlimit(RLIMIT_FD_MAX, &limit) == -1)
  102.             {
  103.             (void)fprintf(stderr,"error setting max fd's to %d\n",
  104.                     limit.rlim_cur);
  105.             exit(-1);
  106.             }
  107. # endif
  108.         }
  109. #endif
  110.  
  111. <-snippet 2->
  112. #ifdef sequent
  113. # ifndef    DYNIXPTX
  114.     int    fd_limit;
  115.  
  116.     fd_limit = setdtablesize(MAXCONNECTIONS + 1);
  117.     if (fd_limit < MAXCONNECTIONS)
  118.         {
  119.         (void)fprintf(stderr,"ircd fd table too big\n");
  120.         (void)fprintf(stderr,"Hard Limit: %d IRC max: %d\n",
  121.             fd_limit, MAXCONNECTIONS);
  122.         (void)fprintf(stderr,"Fix MAXCONNECTIONS\n");
  123.         exit(-1);
  124.         }
  125. # endif
  126. #endif
  127.  
  128. 13) I run debian-sparc and i get errors when compiling in match.c
  129.     What should I do?
  130. A: If it says like this
  131. <-snippet->
  132. match.c: In function 'myncmp':
  133. match.c:247: argument 'str1' doesn't match prototype
  134. /usr/include/string.h:255: prototype declaration
  135. match.c:247: argument 'str2' doesn't match prototype
  136. /usr/include/string.h:255: prototype declaration
  137. match.c:247: argument 'n' doesn't match prototype
  138. /usr/include/string.h:255: prototype declaration
  139. <-end of snippet>
  140.  
  141. Then go into include/setup.h and add this line:
  142. #define GOT_STRCASECMP
  143.  
  144. (C) Carsten Munk 1999-2000